home *** CD-ROM | disk | FTP | other *** search
/ Utilities Professional 1-1500 / Utilities Professional 1-1500 (1994)(WPD)[!].iso / 12511500 / var1432.dms / var1432.adf / NDUK-V40.lha / V40 / devtools / DOCS / stripc.doc < prev   
Text File  |  1993-05-13  |  841b  |  25 lines

  1. STRIPC
  2.  
  3. Format:         StripC <sourcefile> <destinationfile>
  4.  
  5. Template:    StripC "SOURCEFILE,DESTINATIONFILE"
  6.  
  7. Purpose:     To remove comments and extraneous white space characters.
  8.  
  9. Specification:
  10.  
  11. StripC (short for Strip Copy) removes comments and white space characters
  12. from C language and 680xx assembly language source files.  Stripping source
  13. files can significantly reduce the amount of time it takes to compile or
  14. assemble programs.  In particular, stripped .h and .i files, included in
  15. many source files for a program, can dramatically decrease
  16. compilation/assembly.
  17.  
  18. <sourcefile> should end in .h (C source) or .i (assembly).  If not, StripC
  19. will do a straight, unaltered copy of the source file.  <destinationfile>
  20. can be any legal name, but it must be different from <sourcefile>.
  21.  
  22. Example:
  23.  
  24. 1> StripC intuition.h intuition.strip
  25.